home *** CD-ROM | disk | FTP | other *** search
/ Maclife 39 / MACLIFE39.ISO.7z / MACLIFE39.ISO / FreeWare200 / バックアップ / synk-242.sit / synk-242 / Scripting Notes < prev    next >
Text File  |  1998-02-02  |  1KB  |  27 lines

  1. Synk 2.4 Scripting Notes
  2. ```````````````````````````````````````
  3. From the AppleScript Script Editor, the command:   do script alias "filename" 
  4. can now be sent to Synk. The result will be to automatically run the document specified by alias "filename"
  5.  
  6. For example:
  7.  
  8. tell application "Synk 2.4.2 (PPC)"
  9.   activate
  10.      □□□copy (choose file) theFile
  11.      do script theFile
  12. end tell
  13.  
  14. or
  15.  
  16. tell application "Synk 2.4.2 (PPC)"
  17.   activate
  18.      do script alias "Duomonger:Documents:backup"
  19.   quit -- quits Synk after running the document
  20. end tell
  21.  
  22. where "Duomonger:Documents:backup" specifies the complete pathname of the Synk document.  (Duomonger is a volume, Documents is a root level folder and backup is the document name... replace these with the specific path to your document.)
  23.  
  24. For more information on AppleScript, buy the book "The Tao of AppleScript" by Derrick Schneider and published by Hayden Books. You will be suprised at the cool things you can do with your Macintosh.
  25.  
  26. -Randall Voth
  27. --rvoth@uniserve.com